from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

81631

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-10-22
Tensile - 7.0.2
Ebuild name:

dev-util/Tensile-7.0.2

Description

A tool for creating a benchmark-driven GEMMs and tensor contractions code

Added to portage

2025-10-22

amdsmi - 7.0.2
Ebuild name:

dev-util/amdsmi-7.0.2

Description

AMD System Management Interface for managing and monitoring GPUs

Added to portage

2025-10-22

aotriton-bin - 0.11b
Ebuild name:

sci-libs/aotriton-bin-0.11b

Description

Ahead of Time (AOT) Triton Math Library (binary package)

Added to portage

2025-10-22

clang - 21.1.4
Ebuild name:

dev-python/clang-21.1.4

Description

Python bindings for llvm-core/clang

Added to portage

2025-10-22

clang - 21.1.4
Ebuild name:

llvm-core/clang-21.1.4

Description

C language family frontend for LLVM

Added to portage

2025-10-22

clang-common - 21.1.4
Ebuild name:

llvm-core/clang-common-21.1.4

Description

Common files shared between multiple slots of clang

Added to portage

2025-10-22

clang-runtime - 21.1.4
Ebuild name:

llvm-runtimes/clang-runtime-21.1.4

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-10-22

compiler-rt - 21.1.4
Ebuild name:

llvm-runtimes/compiler-rt-21.1.4

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-10-22

compiler-rt-sanitizers - 21.1.4
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.4

Description

Compiler runtime libraries for clang (sanitizers &

Added to portage

2025-10-22

composable-kernel - 7.0.2
Ebuild name:

sci-libs/composable-kernel-7.0.2

Description

High Performance Composable Kernel for AMD GPUs

Added to portage

2025-10-22

flang - 21.1.4
Ebuild name:

llvm-core/flang-21.1.4

Description

LLVM's Fortran frontend

Added to portage

2025-10-22

flang-rt - 21.1.4
Ebuild name:

llvm-runtimes/flang-rt-21.1.4

Description

LLVM's Fortran runtime

Added to portage

2025-10-22

hip - 7.0.2
Ebuild name:

dev-util/hip-7.0.2

Description

C++ Heterogeneous-Compute Interface for Portability

Added to portage

2025-10-22

hipBLAS - 7.0.2
Ebuild name:

sci-libs/hipBLAS-7.0.2

Description

ROCm BLAS marshalling library

Added to portage

2025-10-22

hipcc - 7.0.2
Ebuild name:

dev-util/hipcc-7.0.2

Description

Radeon Open Compute hipcc

Added to portage

2025-10-22

hipify-clang - 7.0.2
Ebuild name:

dev-util/hipify-clang-7.0.2

Description

A set of tools to translate CUDA source code into portable HIP C++

Added to portage

2025-10-22

hipother - 7.0.2
Ebuild name:

dev-libs/hipother-7.0.2

Description

ROCclr runtime implementation for non-AMD HIP platforms, like NVIDIA

Added to portage

2025-10-22

joplin-desktop - 3.5.5
Ebuild name:

app-office/joplin-desktop-3.5.5

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2025-10-22

libclc - 21.1.4
Ebuild name:

llvm-core/libclc-21.1.4

Description

OpenCL C library

Added to portage

2025-10-22

libcxx - 21.1.4
Ebuild name:

llvm-runtimes/libcxx-21.1.4

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2025-10-22

libcxxabi - 21.1.4
Ebuild name:

llvm-runtimes/libcxxabi-21.1.4

Description

Low level support for a standard C++ library

Added to portage

2025-10-22

libgcc - 21.1.4
Ebuild name:

llvm-runtimes/libgcc-21.1.4

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-10-22

libpcre2 - 10.47
Ebuild name:

dev-libs/libpcre2-10.47

Description

Perl-compatible regular expression library

Added to portage

2025-10-22

libunwind - 21.1.4
Ebuild name:

llvm-runtimes/libunwind-21.1.4

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-10-22

lit - 21.1.4
Ebuild name:

dev-python/lit-21.1.4

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-10-22

lld - 21.1.4
Ebuild name:

llvm-core/lld-21.1.4

Description

The LLVM linker (link editor)

Added to portage

2025-10-22

lldb - 21.1.4
Ebuild name:

llvm-core/lldb-21.1.4

Description

The LLVM debugger

Added to portage

2025-10-22

llvm - 21.1.4
Ebuild name:

dev-ml/llvm-21.1.4

Description

OCaml bindings for LLVM

Added to portage

2025-10-22

llvm - 21.1.4
Ebuild name:

llvm-core/llvm-21.1.4

Description

Low Level Virtual Machine

Added to portage

2025-10-22

llvm-common - 21.1.4
Ebuild name:

llvm-core/llvm-common-21.1.4

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-10-22

mlir - 21.1.4
Ebuild name:

llvm-core/mlir-21.1.4

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-10-22

offload - 21.1.4
Ebuild name:

llvm-runtimes/offload-21.1.4

Description

OpenMP offloading support

Added to portage

2025-10-22

openmp - 21.1.4
Ebuild name:

llvm-runtimes/openmp-21.1.4

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-10-22

polly - 21.1.4
Ebuild name:

llvm-core/polly-21.1.4

Description

Polyhedral optimizations for LLVM

Added to portage

2025-10-22

pwsh - 7.5.4
Ebuild name:

app-shells/pwsh-7.5.4

Description

Cross-platform automation and configuration tool

Added to portage

2025-10-22

qdmr - 0.13.1
Ebuild name:

net-wireless/qdmr-0.13.1

Description

GUI application for configuring and programming cheap DMR radios

Added to portage

2025-10-22

rccl - 7.0.2
Ebuild name:

dev-libs/rccl-7.0.2

Description

ROCm Communication Collectives Library (RCCL)

Added to portage

2025-10-22

rclone - 1.71.2
Ebuild name:

net-misc/rclone-1.71.2

Description

A program to sync files to and from various cloud storage providers

Added to portage

2025-10-22

rocdbgapi - 7.0.2
Ebuild name:

dev-libs/rocdbgapi-7.0.2

Description

AMD Debugger API

Added to portage

2025-10-22

rocm-cmake - 7.0.2
Ebuild name:

dev-build/rocm-cmake-7.0.2

Description

Radeon Open Compute CMake Modules

Added to portage

2025-10-22

rocm-comgr - 7.0.2
Ebuild name:

dev-libs/rocm-comgr-7.0.2

Description

Radeon Open Compute Code Object Manager

Added to portage

2025-10-22

rocm-core - 7.0.2
Ebuild name:

dev-libs/rocm-core-7.0.2

Description

Library that provides ROCm release version and install path information

Added to portage

2025-10-22

rocm-device-libs - 7.0.2
Ebuild name:

dev-libs/rocm-device-libs-7.0.2

Description

Radeon Open Compute Device Libraries

Added to portage

2025-10-22

rocm-opencl-runtime - 7.0.2
Ebuild name:

dev-libs/rocm-opencl-runtime-7.0.2

Description

Radeon Open Compute OpenCL Compatible Runtime

Added to portage

2025-10-22

rocm-smi - 7.0.2
Ebuild name:

dev-util/rocm-smi-7.0.2

Description

ROCm System Management Interface Library

Added to portage

2025-10-22

rocm_bandwidth_test - 7.0.2
Ebuild name:

dev-util/rocm_bandwidth_test-7.0.2

Description

Bandwidth test for ROCm

Added to portage

2025-10-22

rocminfo - 7.0.2
Ebuild name:

dev-util/rocminfo-7.0.2

Description

ROCm Application for Reporting System Info

Added to portage

2025-10-22

rocr-runtime - 7.0.2
Ebuild name:

dev-libs/rocr-runtime-7.0.2

Description

Radeon Open Compute Runtime

Added to portage

2025-10-22

roct-thunk-interface - 7.0.2
Ebuild name:

dev-libs/roct-thunk-interface-7.0.2

Description

Radeon Open Compute Thunk Interface

Added to portage

2025-10-22

roctracer - 7.0.2
Ebuild name:

dev-util/roctracer-7.0.2

Description

Callback/Activity Library for Performance tracing AMD GPU's

Added to portage

2025-10-22

2025-10-21
Convert-Binary-C - 0.860.0
Ebuild name:

dev-perl/Convert-Binary-C-0.860.0

Description

Binary Data Conversion using C Types

Added to portage

2025-10-21

YAML-Syck - 1.360.0
Ebuild name:

dev-perl/YAML-Syck-1.360.0

Description

Fast, lightweight YAML loader and dumper

Added to portage

2025-10-21

aiohttp - 3.13.1
Ebuild name:

dev-python/aiohttp-3.13.1

Description

HTTP client/server for asyncio

Added to portage

2025-10-21

alacritty - 0.16.1
Ebuild name:

x11-terms/alacritty-0.16.1

Description

GPU-accelerated terminal emulator

Added to portage

2025-10-21

aurorae - 6.5.0
Ebuild name:

kde-plasma/aurorae-6.5.0

Description

Themeable window decoration for KWin

Added to portage

2025-10-21

backports-zstd - 1.0.0-r1
Ebuild name:

dev-python/backports-zstd-1.0.0-r1

Description

Backport of PEP-784 adding Zstandard to the standard library

Added to portage

2025-10-21

bluedevil - 6.5.0
Ebuild name:

kde-plasma/bluedevil-6.5.0

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-10-21

bmaptool - 3.9.0
Ebuild name:

sys-block/bmaptool-3.9.0

Description

The better dd for embedded projects, based on block maps

Added to portage

2025-10-21

breeze - 6.5.0
Ebuild name:

kde-plasma/breeze-6.5.0

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-10-21

breeze-grub - 6.5.0
Ebuild name:

kde-plasma/breeze-grub-6.5.0

Description

Breeze theme for GRUB

Added to portage

2025-10-21

breeze-gtk - 6.5.0
Ebuild name:

kde-plasma/breeze-gtk-6.5.0

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-10-21

breeze-plymouth - 6.5.0
Ebuild name:

kde-plasma/breeze-plymouth-6.5.0

Description

Breeze theme for Plymouth

Added to portage

2025-10-21

calver - 2025.10.20
Ebuild name:

dev-python/calver-2025.10.20

Description

Setuptools extension for CalVer package versions

Added to portage

2025-10-21

click - 8.3.1
Ebuild name:

dev-python/click-8.3.1

Description

A Python package for creating beautiful command line interfaces

Added to portage

2025-10-21

cython - 3.1.5
Ebuild name:

dev-python/cython-3.1.5

Description

A Python to C compiler

Added to portage

2025-10-21

discover - 6.5.0
Ebuild name:

kde-plasma/discover-6.5.0

Description

KDE Plasma resources management GUI

Added to portage

2025-10-21

drkonqi - 6.5.0
Ebuild name:

kde-plasma/drkonqi-6.5.0

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-10-21

edbrowse - 3.8.13
Ebuild name:

app-accessibility/edbrowse-3.8.13

Description

Combination editor, browser, and mail client that is 100% text ba

Added to portage

2025-10-21

ffmpegthumbnailer - 2.2.3
Ebuild name:

media-video/ffmpegthumbnailer-2.2.3

Description

Lightweight video thumbnailer that can be used by file managers

Added to portage

2025-10-21

flask-compress - 1.20
Ebuild name:

dev-python/flask-compress-1.20

Description

Compress responses in your Flask app with gzip

Added to portage

2025-10-21

flatpak-kcm - 6.5.0
Ebuild name:

kde-plasma/flatpak-kcm-6.5.0

Description

Flatpak Permissions Management KCM

Added to portage

2025-10-21

fsautocomplete - 0.80.0
Ebuild name:

dev-dotnet/fsautocomplete-0.80.0

Description

F language server using the Language Server Protocol

Added to portage

2025-10-21

googleapis-common-protos - 1.71.0
Ebuild name:

dev-python/googleapis-common-protos-1.71.0

Description

Python classes generated from the common protos in the g

Added to portage

2025-10-21

hypothesis - 6.142.2
Ebuild name:

dev-python/hypothesis-6.142.2

Description

A library for property based testing

Added to portage

2025-10-21

imediff - 3.4.1
Ebuild name:

dev-util/imediff-3.4.1

Description

2-way/3-way merge tool (CLI, Ncurses)

Added to portage

2025-10-21

inline-snapshot - 0.30.1
Ebuild name:

dev-python/inline-snapshot-0.30.1

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-10-21

insipid-sphinx-theme - 0.4.3
Ebuild name:

dev-python/insipid-sphinx-theme-0.4.3

Description

Insipid Sphinx theme

Added to portage

2025-10-21

ipykernel - 6.31.0
Ebuild name:

dev-python/ipykernel-6.31.0

Description

IPython Kernel for Jupyter

Added to portage

2025-10-21

kactivitymanagerd - 6.5.0
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.0

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-10-21

kde-cli-tools - 6.5.0
Ebuild name:

kde-plasma/kde-cli-tools-6.5.0

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-10-21

kde-cli-tools-common - 6.5.0
Ebuild name:

kde-plasma/kde-cli-tools-common-6.5.0

Description

Added to portage

2025-10-21

kde-gtk-config - 6.5.0
Ebuild name:

kde-plasma/kde-gtk-config-6.5.0

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-10-21

kdecoration - 6.5.0
Ebuild name:

kde-plasma/kdecoration-6.5.0

Description

Plugin based library to create window decorations

Added to portage

2025-10-21

kdeplasma-addons - 6.5.0
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.0

Description

Extra Plasma applets and engines

Added to portage

2025-10-21

kdesu-gui - 6.5.0
Ebuild name:

kde-plasma/kdesu-gui-6.5.0

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-10-21

keditfiletype - 6.5.0
Ebuild name:

kde-plasma/keditfiletype-6.5.0

Description

File Type Editor

Added to portage

2025-10-21

kgamma - 6.5.0
Ebuild name:

kde-plasma/kgamma-6.5.0

Description

Screen gamma values kcontrol module

Added to portage

2025-10-21

kglobalacceld - 6.5.0
Ebuild name:

kde-plasma/kglobalacceld-6.5.0

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-10-21

kinfocenter - 6.5.0
Ebuild name:

kde-plasma/kinfocenter-6.5.0

Description

Utility providing information about the computer hardware

Added to portage

2025-10-21

kmenuedit - 6.5.0
Ebuild name:

kde-plasma/kmenuedit-6.5.0

Description

KDE Plasma menu editor

Added to portage

2025-10-21

kmymoney - 5.2.1-r2
Ebuild name:

app-office/kmymoney-5.2.1-r2

Description

Personal finance manager based on KDE Frameworks

Added to portage

2025-10-21

knighttime - 6.5.0
Ebuild name:

kde-plasma/knighttime-6.5.0

Description

Helpers for scheduling the dark-light cycle

Added to portage

2025-10-21

kombu - 5.6.0_rc2
Ebuild name:

dev-python/kombu-5.6.0_rc2

Description

AMQP Messaging Framework for Python

Added to portage

2025-10-21

kpipewire - 6.5.0
Ebuild name:

kde-plasma/kpipewire-6.5.0

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-10-21

krdp - 6.5.0
Ebuild name:

kde-plasma/krdp-6.5.0

Description

Library and examples for creating an RDP server

Added to portage

2025-10-21

kscreen - 6.5.0
Ebuild name:

kde-plasma/kscreen-6.5.0

Description

KDE Plasma screen management

Added to portage

2025-10-21

kscreenlocker - 6.5.0
Ebuild name:

kde-plasma/kscreenlocker-6.5.0

Description

Library and components for secure lock screen architecture

Added to portage

2025-10-21

ksshaskpass - 6.5.0
Ebuild name:

kde-plasma/ksshaskpass-6.5.0

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-10-21

ksystemstats - 6.5.0
Ebuild name:

kde-plasma/ksystemstats-6.5.0

Description

Plugin-based system monitoring daemon

Added to portage

2025-10-21

kwallet-pam - 6.5.0
Ebuild name:

kde-plasma/kwallet-pam-6.5.0

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-10-21

kwayland - 6.5.0
Ebuild name:

kde-plasma/kwayland-6.5.0

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-10-21

kwayland-integration - 6.5.0
Ebuild name:

kde-plasma/kwayland-integration-6.5.0

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-10-21

kwin - 6.5.0
Ebuild name:

kde-plasma/kwin-6.5.0

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-10-21

kwin-x11 - 6.5.0
Ebuild name:

kde-plasma/kwin-x11-6.5.0

Description

Flexible, composited X window manager

Added to portage

2025-10-21

kwrited - 6.5.0
Ebuild name:

kde-plasma/kwrited-6.5.0

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-10-21

layer-shell-qt - 6.5.0
Ebuild name:

kde-plasma/layer-shell-qt-6.5.0

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2025-10-21

libcaca - 0.99_beta19-r12
Ebuild name:

media-libs/libcaca-0.99_beta19-r12

Description

A library that creates colored ASCII-art graphics

Added to portage

2025-10-21

libcaca - 0.99_beta20-r1
Ebuild name:

media-libs/libcaca-0.99_beta20-r1

Description

A library that creates colored ASCII-art graphics

Added to portage

2025-10-21

libdwarf - 2.2.0
Ebuild name:

dev-libs/libdwarf-2.2.0

Description

Library intended to simplify reading (and writing) applications using DWARF

Added to portage

2025-10-21

libkscreen - 6.5.0
Ebuild name:

kde-plasma/libkscreen-6.5.0

Description

Plasma screen management library

Added to portage

2025-10-21

libksysguard - 6.5.0
Ebuild name:

kde-plasma/libksysguard-6.5.0

Description

Task management and system monitoring library

Added to portage

2025-10-21

libplasma - 6.5.0
Ebuild name:

kde-plasma/libplasma-6.5.0

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-10-21

libtorrent - 0.16.1
Ebuild name:

net-libs/libtorrent-0.16.1

Description

BitTorrent library written in C++ for *nix

Added to portage

2025-10-21

libxslt - 1.1.43-r2
Ebuild name:

dev-libs/libxslt-1.1.43-r2

Description

XSLT libraries and tools

Added to portage

2025-10-21

logical-unification - 0.4.7
Ebuild name:

dev-python/logical-unification-0.4.7

Description

Logical unification in Python

Added to portage

2025-10-21

milou - 6.5.0
Ebuild name:

kde-plasma/milou-6.5.0

Description

Dedicated search application built on top of Baloo

Added to portage

2025-10-21

narwhals - 2.9.0
Ebuild name:

dev-python/narwhals-2.9.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-10-21

ocean-sound-theme - 6.5.0
Ebuild name:

kde-plasma/ocean-sound-theme-6.5.0

Description

Ocean Sound Theme for Plasma

Added to portage

2025-10-21

oxygen - 6.5.0
Ebuild name:

kde-plasma/oxygen-6.5.0

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-10-21

oxygen-sounds - 6.5.0
Ebuild name:

kde-plasma/oxygen-sounds-6.5.0

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-10-21

pandoc-bin - 3.8.2.1
Ebuild name:

app-text/pandoc-bin-3.8.2.1

Description

Conversion between markup formats (binary package)

Added to portage

2025-10-21

patsy - 1.0.2
Ebuild name:

dev-python/patsy-1.0.2

Description

Python module to describe statistical models and design matrices

Added to portage

2025-10-21

pgmodeler - 1.2.2
Ebuild name:

dev-db/pgmodeler-1.2.2

Description

PostgreSQL Database Modeler

Added to portage

2025-10-21

pixi - 0.57.0
Ebuild name:

dev-util/pixi-0.57.0

Description

A package management and workflow tool

Added to portage

2025-10-21

plasma-activities - 6.5.0
Ebuild name:

kde-plasma/plasma-activities-6.5.0

Description

Core components for KDE's Activities System

Added to portage

2025-10-21

plasma-activities-stats - 6.5.0
Ebuild name:

kde-plasma/plasma-activities-stats-6.5.0

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-10-21

plasma-browser-integration - 6.5.0
Ebuild name:

kde-plasma/plasma-browser-integration-6.5.0

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-10-21

plasma-desktop - 6.5.0
Ebuild name:

kde-plasma/plasma-desktop-6.5.0

Description

KDE Plasma desktop

Added to portage

2025-10-21

plasma-disks - 6.5.0
Ebuild name:

kde-plasma/plasma-disks-6.5.0

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2025-10-21

plasma-firewall - 6.5.0
Ebuild name:

kde-plasma/plasma-firewall-6.5.0

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-10-21

plasma-integration - 6.5.0
Ebuild name:

kde-plasma/plasma-integration-6.5.0

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-10-21

plasma-login-sessions - 6.5.0
Ebuild name:

kde-plasma/plasma-login-sessions-6.5.0

Description

KDE Plasma login sessions

Added to portage

2025-10-21

plasma-meta - 6.5.0
Ebuild name:

kde-plasma/plasma-meta-6.5.0

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-10-21

plasma-nm - 6.5.0
Ebuild name:

kde-plasma/plasma-nm-6.5.0

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-10-21

plasma-pa - 6.5.0
Ebuild name:

kde-plasma/plasma-pa-6.5.0

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2025-10-21

plasma-sdk - 6.5.0
Ebuild name:

kde-plasma/plasma-sdk-6.5.0

Description

Useful applications for Plasma development

Added to portage

2025-10-21

plasma-systemmonitor - 6.5.0
Ebuild name:

kde-plasma/plasma-systemmonitor-6.5.0

Description

Monitor system sensors, process information and other system

Added to portage

2025-10-21

plasma-thunderbolt - 6.5.0
Ebuild name:

kde-plasma/plasma-thunderbolt-6.5.0

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2025-10-21

plasma-vault - 6.5.0
Ebuild name:

kde-plasma/plasma-vault-6.5.0

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2025-10-21

plasma-welcome - 6.5.0
Ebuild name:

kde-plasma/plasma-welcome-6.5.0

Description

Friendly onboarding wizard for Plasma

Added to portage

2025-10-21

plasma-workspace - 6.5.0
Ebuild name:

kde-plasma/plasma-workspace-6.5.0

Description

KDE Plasma workspace

Added to portage

2025-10-21

plasma-workspace-wallpapers - 6.5.0
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.5.0

Description

Wallpapers for the Plasma workspace

Added to portage

2025-10-21

plasma5support - 6.5.0
Ebuild name:

kde-plasma/plasma5support-6.5.0

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2025-10-21

plymouth-kcm - 6.5.0
Ebuild name:

kde-plasma/plymouth-kcm-6.5.0

Description

KDE Plasma control module for Plymouth

Added to portage

2025-10-21

polkit-kde-agent - 6.5.0
Ebuild name:

kde-plasma/polkit-kde-agent-6.5.0

Description

PolKit agent module for KDE Plasma

Added to portage

2025-10-21

powerdevil - 6.5.0
Ebuild name:

kde-plasma/powerdevil-6.5.0

Description

Power management for KDE Plasma Shell

Added to portage

2025-10-21

print-manager - 6.5.0
Ebuild name:

kde-plasma/print-manager-6.5.0

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2025-10-21

pwsh-bin - 7.5.4
Ebuild name:

app-shells/pwsh-bin-7.5.4

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2025-10-21

pylint - 4.0.2
Ebuild name:

dev-python/pylint-4.0.2

Description

Python code static checker

Added to portage

2025-10-21

pytest-subtests - 0.15.0
Ebuild name:

dev-python/pytest-subtests-0.15.0

Description

Unittest subTest() support and subtests fixture

Added to portage

2025-10-21

qqc2-breeze-style - 6.5.0
Ebuild name:

kde-plasma/qqc2-breeze-style-6.5.0

Description

Breeze inspired QQC2 Style

Added to portage

2025-10-21

qtdeclarative - 6.10.0-r1
Ebuild name:

dev-qt/qtdeclarative-6.10.0-r1

Description

Qt Declarative (Quick 2)

Added to portage

2025-10-21

requests-file - 3.0.1
Ebuild name:

dev-python/requests-file-3.0.1

Description

File transport adapter for Requests

Added to portage

2025-10-21

rofi-calc - 2.5.0
Ebuild name:

x11-misc/rofi-calc-2.5.0

Description

Do live calculations in rofi

Added to portage

2025-10-21

rspec-core - 3.13.6
Ebuild name:

dev-ruby/rspec-core-3.13.6

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-10-21

rtorrent - 0.16.1
Ebuild name:

net-p2p/rtorrent-0.16.1

Description

BitTorrent Client using libtorrent

Added to portage

2025-10-21

sbcl - 2.5.8-r1
Ebuild name:

dev-lisp/sbcl-2.5.8-r1

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2025-10-21

sddm-kcm - 6.5.0
Ebuild name:

kde-plasma/sddm-kcm-6.5.0

Description

KDE Plasma control module for SDDM

Added to portage

2025-10-21

spectacle - 6.5.0
Ebuild name:

kde-plasma/spectacle-6.5.0

Description

Screenshot capture utility

Added to portage

2025-10-21

spek - 0.8.5-r3
Ebuild name:

media-sound/spek-0.8.5-r3

Description

Analyse your audio files by showing their spectrogram

Added to portage

2025-10-21

stunnel - 5.76
Ebuild name:

net-misc/stunnel-5.76

Description

TLS/SSL - Port Wrapper

Added to portage

2025-10-21

systemsettings - 6.5.0
Ebuild name:

kde-plasma/systemsettings-6.5.0

Description

Control Center to configure KDE Plasma desktop

Added to portage

2025-10-21

tree-sitter - 0.25.2
Ebuild name:

dev-python/tree-sitter-0.25.2

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2025-10-21

typer - 0.20.0
Ebuild name:

dev-python/typer-0.20.0

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2025-10-21

unixODBC - 2.3.14
Ebuild name:

dev-db/unixODBC-2.3.14

Description

Complete ODBC driver manager

Added to portage

2025-10-21

veracrypt - 1.26.7-r1
Ebuild name:

app-crypt/veracrypt-1.26.7-r1

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-10-21

wacomtablet - 6.5.0
Ebuild name:

kde-plasma/wacomtablet-6.5.0

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r410
Ebuild name:

net-libs/webkit-gtk-2.50.1-r410

Description

Open source web browser engine

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r411
Ebuild name:

net-libs/webkit-gtk-2.50.1-r411

Description

Open source web browser engine

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r600
Ebuild name:

net-libs/webkit-gtk-2.50.1-r600

Description

Open source web browser engine

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r601
Ebuild name:

net-libs/webkit-gtk-2.50.1-r601

Description

Open source web browser engine

Added to portage

2025-10-21

webrtc-audio-processing - 2.1
Ebuild name:

media-libs/webrtc-audio-processing-2.1

Description

AudioProcessing library from the webrtc.org codebase

Added to portage

2025-10-21

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-10-21

xdg-desktop-portal-kde - 6.5.0
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.5.0

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2025-10-21

xfsprogs - 6.17.0
Ebuild name:

sys-fs/xfsprogs-6.17.0

Description

XFS filesystem utilities

Added to portage

2025-10-21

xterm - 403
Ebuild name:

x11-terms/xterm-403

Description

Terminal Emulator for X Windows

Added to portage

2025-10-21

xvfbwrapper - 0.2.15
Ebuild name:

dev-python/xvfbwrapper-0.2.15

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2025-10-21

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 41.6 ms